home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / misc / emu / prlink_amiga.lha / prlink-0.8.0a / src / options.inc < prev    next >
Text File  |  1995-05-12  |  1KB  |  52 lines

  1. ; target system options
  2.  
  3. c128    = 1
  4. c64    = 2
  5. vic20    = 4
  6. pet3001 = 8
  7. pet4001 = 16
  8.  
  9. ; memory expansion types
  10.  
  11. none    = 0
  12. piaexp    = 1 ; 256kB on the C64 or 512 or 1024 kB on the C128
  13. reuexp    = 2 ; Commodore RAM Expansion Unit
  14. actionreuplay    = 1    ; set this to 1 if using REU and
  15.                 ; Action Replay simultaneously.
  16. pet96    = 4 ; PET 8096/8296 expansion
  17.  
  18. ; cable types
  19.  
  20. prlink    = 1 ; A 8-bit/4-bit cable, the default.
  21. pc64    = 2 ; A 4-bit/4-bit cable used by the PC64 emulator.
  22. c64net    = 4 ; A 4-bit/2-bit cable used by the 64net program.  Very slow.
  23. prlink88 = 8 ; A 8-bit/8-bit cable
  24. transnib = 16 ; A 4-bit/4-bit cable used by TransNib V1.00
  25.  
  26.   .include "chosen.inc"
  27.  
  28. ;;;;
  29. ;
  30. ; The settings below are used in multiple assembler sources
  31.  
  32. #if target & c128
  33. prsrv    = $1300
  34. prutils = $1700
  35. #endif
  36. #if target & c64
  37. prsrv    = $cd00
  38. prutils = $c000
  39. #endif
  40. #if target & vic20
  41. prsrv    = $4000 ; memory expansion at BLK2 assumed
  42. prutils = $4400
  43. #endif
  44. #if target & (pet3001 | pet4001)
  45. memsize = 32 * 1024    ;; 32 K
  46. prsrv  = memsize - $200
  47. ;prsrv     = 34768
  48. prutils = memsize - $800
  49. petb480 = 1
  50. petb440 = 0
  51. #endif
  52.